home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK1.toast / Development Kits (Disc 1) / Apple Shared Library Manager / ASLM 2.0.1 Licensing Disk / Sources / ASLMMasterScript.r < prev    next >
Encoding:
Text File  |  1996-11-19  |  1.5 KB  |  54 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ASLMMasterScript.r
  3.  
  4.     Contains:    The master script for the ASLM Installer. If you include installation
  5.                 of ASLM with the istallation of your own product then you need to 
  6.                 either #include this file or write a file similar to this one.
  7.  
  8.     Copyright:    © 1992-1994 by Apple Computer, Inc., all rights reserved.
  9.  
  10. */
  11.  
  12. #include "InstallerTypes.r"
  13. #include "Types.r"
  14. #include "SysTypes.r"
  15.  
  16. #include "ASLMVers2.r"
  17.  
  18. /*    -----------------------------------------------------------------
  19.     Define today's date
  20.     ----------------------------------------------------------------- */
  21.     
  22. #define Today                8141996
  23.  
  24. /*    -----------------------------------------------------------------
  25.     Define the base for ASLM Installer resource ID's
  26.     ----------------------------------------------------------------- */
  27.  
  28. #define SLMBase    8000
  29.  
  30. /*    -----------------------------------------------------------------
  31.     Define the name of your installation disk
  32.     ----------------------------------------------------------------- */
  33.  
  34. #ifndef InstallerDiskName
  35.     #define InstallerDiskName    "ASLM Installer:"
  36. #endif
  37.  
  38. /*    -----------------------------------------------------------------
  39.     If GENERATING68K or GENERATINGPOWERPC is not defined then define them to be true.
  40.     ----------------------------------------------------------------- */
  41.  
  42. #ifndef GENERATING68K
  43.     #define GENERATING68K 1
  44. #endif
  45. #ifndef GENERATINGPOWERPC
  46.     #define GENERATINGPOWERPC 1
  47. #endif
  48.  
  49. #if 0
  50. #include "ASLMSplashScreen.r"
  51. #endif
  52.  
  53. #include "ASLMFramework.r"
  54.